Calculate payout fees

Calculates the payout fees for a given payout amount and currency. Returns a list of user's payment methods listing the payout options for each. Each option contains information about fee percentages, amounts, and processing times. Can optionally provide a list of payment method IDs to filter for specific payment methods.

Securitytilia_auth
Request
path Parameters
account_id
required
string (AccountId) <= 36 characters

Account ID.

Example: acct_2TiDFXHVFMlAuyy7ovvz3YPKv9b
query Parameters
amount
required
integer

The payout amount

Example: amount=10000
currency
required
string

The currency of the payout

Example: currency=usd
payment_method_ids
string

Optional comma-delimited list of payment method IDs to filter.

Example: payment_method_ids=pm_2V2b9vsPlJnlAY7Yer6QarIa1FH,pm_2V2bA1zUaLQ4n5Qlm96p7p1ae6i
Responses
200

Successfully calculated payout fees.

400

Validation error.

401

Unauthorized access.

500

Service unavailable or server error.

get/v2/{account_id}/payout/calculate-fees
Request samples
Response samples
application/json
{
  • "status": "Success",
  • "message": [ ],
  • "codes": [ ],
  • "payload": {
    }
}